-
Re: How to remove vertical PS hints with a Python script?
The del() command is your friend here: from robofab.world import AllFonts for thisFont in AllFonts(): for thisGlyph in thisFont: verticalPSHints = thisGlyph.naked().vhints for n in range(len(vertical…1 -
Re: Webfont vertical metrics strategies
In RoboFont the setting can be changed in the font info directly.1 -
Re: Modular type: your help finding good examples needed
Then I stand corrected. Your “period” post reminded me of a hack that certain people used on other forums that lacked a bookmark function.2 -
Re: Best resources to learn Python in regards to font design?
First decision is which version of Python to learn: version 2 or 3. Most font editors and tools that I know still rely on Python 2.7. Therefore it probably makes most sense to focus on that first. I …3 -
Re: Is one.osf.ss01 a valid glyph name?
A glyph name may be up to 63 characters in length, must be entirely comprised of characters from the following set: A-Z a-z 0-9 . (period) _ (underscore) and must not start with a digit or period. Th…2